home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / help.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  281 b   |  12 lines

  1. #include "help.h"
  2.  
  3. HypertextView* help_object;            // help object
  4.  
  5. void help(char* help_context)        // Draws the window with help
  6.     {
  7.     help_object->jmp_to(help_context);
  8.     help_object->show_window();
  9.     help_object->exe();
  10.     help_object->hide();
  11.     }
  12.